home *** CD-ROM | disk | FTP | other *** search
/ 9-Digit Zip Code Directory / 9-Digit Zip Code Directory (American Business Information) (ABIZIP-12).ISO / z4src.zip / CLAPP.HPP < prev    next >
C/C++ Source or Header  |  1993-07-15  |  2KB  |  72 lines

  1. //----------------------------------------------------------------------------
  2. //                            MODULE DESCRIPTION
  3. //
  4. //  Module:    class.hpp
  5. //   Title:    C++ Class Libraries
  6. //  Notice:    John M. Weeder
  7. //                 Copyright (c) 1993. All rights reserved.
  8. //             This module contains proprietary information and should be 
  9. //                treated as confidential.
  10. //
  11. //----------------------------------------------------------------------------
  12. //                           MAINTENANCE HISTORY
  13. //
  14. // $Workfile$
  15. // $Revision$
  16. //   $Author$
  17. //     $Date$
  18. //      $Log$    
  19. //
  20. //----------------------------------------------------------------------------
  21. //                             MODULE NARRATIVE
  22. //
  23. //    This module contains code for the class CL_APP.
  24. //    This code.
  25. //
  26. //    The code in this module may be written in C++ or C.
  27. //
  28. //    This module is portable to:
  29. //        DOS 3.X+
  30. //        MS Windows 3.X+
  31. //        OS/2 2.X+
  32. //        OS/2 2.0 PM
  33. //
  34. //    The following compilers are supported:
  35. //        MSC 6.0A
  36. //        MSC/C++ 7.0
  37. //        Borland C++ 3.1 for DOS
  38. //        Borland C++ 1.0 for OS/2 2.X
  39. //
  40. //----------------------------------------------------------------------------
  41.  
  42. //----------------------------------------------------------------------------
  43. //    Class CL_APP
  44. //----------------------------------------------------------------------------
  45. #define CL_APP_PARENT CL_OBJECT
  46. class CLASSTYPE CL_APP : public CL_APP_PARENT
  47. {
  48. public:
  49.     FN_M CL_APP();
  50.     FN_M CL_APP(RCCL_APP);
  51.     virtual FN_M ~CL_APP();
  52.  
  53.     virtual BOOL FN_M Destroy(BOOL = TRUE);
  54.     virtual BOOL FN_M Initialize(SHORT = CL_INIT_ALL);
  55.     RCCL_APP FN_M operator=(RCCL_APP);
  56.     virtual BOOL FN_M Retrieve(PCSZ, PCSZ = NULL);
  57.     virtual int FN_M Run() = 0;
  58.     virtual BOOL FN_M Store(PCSZ, PCSZ = NULL);
  59.  
  60. #if COMPILE_DEBUG
  61.     static VOID FN_M Print(PCCL_APP = NULL, PCSZ = NULL, SIZET = 0);
  62.     static BOOL FN_M Test(SHORT = 0);
  63. #endif
  64.  
  65. protected:
  66. private:
  67. };
  68. //----------------------------------------------------------------------------
  69. //------------------------------- End of File --------------------------------
  70. //----------------------------------------------------------------------------
  71.  
  72.